home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / freeWAIS-sf-1.1 / ui / globals.h < prev    next >
C/C++ Source or Header  |  1994-08-07  |  1KB  |  54 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    This is part of the shell user-interface for the WAIS software.  Do with it
  6.    as you please.
  7.  
  8.    jonathan@Think.COM
  9.  
  10.  * $Log: globals.h,v $
  11.  * Revision 1.4  1994/08/08  07:33:06  pfeifer
  12.  * Moved wais_log_file_name and waislogfile to cutil.[ch]
  13.  *
  14.  * Revision 1.3  1994/08/05  08:55:03  pfeifer
  15.  * dumped numtosave since it's unused
  16.  *
  17.  * Revision 1.2  1994/08/05  07:29:58  pfeifer
  18.  * Release beta 04
  19.  *
  20.  * Revision 1.1  93/06/23  20:02:32  warnock
  21.  * Initial revision
  22.  * 
  23.  * Revision 1.1  1993/02/16  15:09:27  freewais
  24.  * Initial revision
  25.  *
  26.  */
  27.  
  28. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  29.  
  30.  
  31. #ifndef H_GLOBALS
  32. #define H_GLOBALS
  33.  
  34. #ifdef MAIN
  35. #define ext
  36. #else
  37. #define ext extern
  38. #endif
  39.  
  40. ext char* command_name;
  41.  
  42. ext int NumQuestions;
  43.  
  44. ext Question the_Question;
  45.  
  46. ext SList Sources;
  47. ext int NumSources;
  48.  
  49. /*
  50. ext char* wais_log_file_name;
  51. ext FILE* waislogfile;
  52. */
  53. #endif
  54.